Tables [dbo].[Tagged_Page_Format_Ref]
Properties
PropertyValue
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified1:17:35 PM Thursday, February 23, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_Tagged_Page_Format_Ref: TaggedPageFormatIDTaggedPageFormatIDnumeric(18,0)9
No
TaggedPageFormatFileNamevarchar(50)50
No
TaggedPageFormatDisplayNamevarchar(50)50
No
TaggedPageFormatSmallImagevarchar(50)50
Yes
TaggedPageFormatLargeImagevarchar(50)50
Yes
Foreign Keys FK_TaggedPageFormatRef_TaggedPageFormatTypeRef: [dbo].[Tagged_Page_Format_Type_Ref].TaggedPageFormatTypeCodeIndexes IX_Tagged_Page_Format_Ref_TaggedPageFormatTypeCode: TaggedPageFormatTypeCodeTaggedPageFormatTypeCodechar(1)1
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Tagged_Page_Format_Ref: TaggedPageFormatIDPK_Tagged_Page_Format_RefTaggedPageFormatID
Yes
IX_Tagged_Page_Format_Ref_TaggedPageFormatTypeCodeTaggedPageFormatTypeCode
Foreign Keys Foreign Keys
NameColumns
FK_TaggedPageFormatRef_TaggedPageFormatTypeRefTaggedPageFormatTypeCode->[dbo].[Tagged_Page_Format_Type_Ref].[TaggedPageFormatTypeCode]
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Tagged_Page_Format_Ref]
(
[TaggedPageFormatID] [numeric] (18, 0) NOT NULL,
[TaggedPageFormatFileName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[TaggedPageFormatDisplayName] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[TaggedPageFormatSmallImage] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[TaggedPageFormatLargeImage] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[TaggedPageFormatTypeCode] [char] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Tagged_Page_Format_Ref] ADD CONSTRAINT [PK_Tagged_Page_Format_Ref] PRIMARY KEY CLUSTERED ([TaggedPageFormatID]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_Tagged_Page_Format_Ref_TaggedPageFormatTypeCode] ON [dbo].[Tagged_Page_Format_Ref] ([TaggedPageFormatTypeCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Tagged_Page_Format_Ref] ADD CONSTRAINT [FK_TaggedPageFormatRef_TaggedPageFormatTypeRef] FOREIGN KEY ([TaggedPageFormatTypeCode]) REFERENCES [dbo].[Tagged_Page_Format_Type_Ref] ([TaggedPageFormatTypeCode])
GO
GRANT REFERENCES ON  [dbo].[Tagged_Page_Format_Ref] TO [IMIS]
GRANT SELECT ON  [dbo].[Tagged_Page_Format_Ref] TO [IMIS]
GRANT INSERT ON  [dbo].[Tagged_Page_Format_Ref] TO [IMIS]
GRANT DELETE ON  [dbo].[Tagged_Page_Format_Ref] TO [IMIS]
GRANT UPDATE ON  [dbo].[Tagged_Page_Format_Ref] TO [IMIS]
GO
Uses
Used By